04f26bb809a33241aecf2c23d6ceabc527e8bb35,LishApps/src/main/java/com/payvment/continuuity/data/CounterTable.java,CounterTable,incrementCounterSet,#String#String[]#number[]#,338
Before Change
public void incrementCounterSet(String counterSet,
String [] counterNames, long [] amounts) {
try {
counters.write(generateCounterSetIncrement(counterSet, counterNames, amounts));
} catch (OperationException e) {
throw new RuntimeException(e);
}
After Change
*/
public Map<byte[],Long> incrementCounterSet(String counterSet,
String [] counterNames, long [] amounts) throws OperationException {
return this.counters.incrementAndGet(
generateCounterSetIncrement(counterSet, counterNames, amounts));
}
/**